home *** CD-ROM | disk | FTP | other *** search
- ;
- ; QPEG video driver
- ; for NCR 77C22 chipset
- ;
- ; Written by Peter van Sebille for QPEG
- ;
-
- .286
- Code Segment Para 'Code'
- Assume cs:Code
- Org 100h
-
- Procs dw Bank,Init,Exit,0
-
- Bank: shl al,2
- push ax
- mov dx,03c4h
- mov al,18h
- out dx,al
- inc dx
- pop ax
- out dx,al
- retf
-
- Init: retf
-
- Exit: retf
-
- Code Ends
- End Procs
-
- ; End of source.
-